home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 September / CHIP Eylül 1996.iso / utils / povray / povsrc.lzh / machine / ibmpc / djgcc / putdjc.bat < prev   
DOS Batch File  |  1994-02-06  |  508b  |  21 lines

  1. @echo off
  2. rem
  3. rem
  4. if not "%1" == "" goto NotEmpty
  5. echo This batch file copies all files for compiling POV-Ray with DJGCC
  6. echo to a working directory you specify.
  7. echo For example: "PUTDJC C:\POVWORK" copies files to the C:\POVWORK directory.
  8. goto Done
  9. :NotEmpty
  10. if not exist %1\nul echo Directory %1 doesn't exist!
  11. if not exist %1\nul goto Done
  12. rem
  13. rem
  14. echo on
  15. copy ibmgcc*.* %1
  16. copy ..\ibm.c %1
  17. copy ..\ibmconf.h %1\config.h
  18. copy ..\..\..\source\*.c %1
  19. copy ..\..\..\source\*.h %1
  20. :done
  21.